home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / dev / m2 / ModulaScan.lha / ModulaScan / ModulaScan.doc < prev    next >
Text File  |  1995-05-21  |  1KB  |  72 lines

  1. NAME
  2.  
  3.         ModulaScan
  4.  
  5.  
  6. FORMAT
  7.  
  8.         Not runable from Shell or WB.
  9.  
  10.  
  11. PURPOSE
  12.  
  13.         Modula-II Scanner for GoldED.
  14.  
  15.  
  16. SPECIFICATION
  17.  
  18.         ModulaScan was written to use with the "FUNC" command of GoldED. It
  19.         recognizes PROCEDUE-, TYPE-, CONST- and VAR objects. So GoldED is able
  20.         to generate a referencefile of all your Modula Definition modules. Now
  21.         you can look up the definition of the function under the cursor with
  22.         only one keyhit.
  23.  
  24.  
  25. OPTIONS
  26.  
  27.         None.
  28.  
  29. EXAMPLE
  30.  
  31.         the following text
  32.  
  33.         ----
  34.         PROCEDURE test;
  35.  
  36.         TYPE str:ARRAY [0..10] OF CHAR;
  37.              dummy:CARDINAL;
  38.  
  39.         CONST drei=3;
  40.  
  41.         VAR eins,zwei:INTEGER
  42.         ----
  43.  
  44.         will generate an object list with the items "test, str, eins, drei".
  45.  
  46. BUGS
  47.  
  48.         None (I hope).
  49.  
  50.  
  51. AUTHOR
  52.  
  53.         Marc Ewert
  54.         Weisestr. 44
  55.         12049 Berlin
  56.         Germany
  57.         
  58.         E-mail: ewertmac@cs.tu-berlin.de
  59.  
  60.  
  61. NOTES
  62.  
  63.         You have to write the keyword (PROCEDURE, ...) in front of every
  64.         object ModulaScan should recognize. And it have to start in the first
  65.         column.
  66.  
  67.  
  68. SEE ALSO
  69.  
  70.         FUNC (GoldED), XREF (GoldED)
  71.  
  72.